Eclipse Platform
Pre-release 3.0

org.eclipse.core.runtime
Interface IExtensionDelta


public interface IExtensionDelta

An extension delta represents changes to the extension registry.

This interface is not intended to be implemented by clients.

Since:
3.0

Field Summary
static int ADDED
          Delta kind constant indicating that the extension has been added to the extension registry.
static int REMOVED
          Delta kind constant indicating that the extension has been removed from the extension registry.
 
Method Summary
 IExtension getExtension()
          Returns the affected extension.
 IExtensionPoint getExtensionPoint()
          Returns the affected extension point.
 int getKind()
          The kind of this extension delta.
 

Field Detail

ADDED

public static final int ADDED
Delta kind constant indicating that the extension has been added to the extension registry.

See Also:
getKind(), Constant Field Values

REMOVED

public static final int REMOVED
Delta kind constant indicating that the extension has been removed from the extension registry.

See Also:
getKind(), Constant Field Values
Method Detail

getKind

public int getKind()
The kind of this extension delta.

See Also:
ADDED, REMOVED

getExtension

public IExtension getExtension()
Returns the affected extension.

Returns:
the affected extension

getExtensionPoint

public IExtensionPoint getExtensionPoint()
Returns the affected extension point.

Returns:
the affected extension point

Eclipse Platform
Pre-release 3.0

Copyright (c) IBM Corp. and others 2000, 2003. All Rights Reserved.